home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_aet_thingambient.cog < prev    next >
Text File  |  1999-11-15  |  948b  |  53 lines

  1. # Jones 3D Cog Script
  2. #
  3. # aet_ThingAmbient.cog
  4. #
  5. # [TRM] [TL]
  6. #
  7. # (C) 1999 LucasArts Entertainment Co. All Rights Reserved
  8. # ========================================================================================
  9.  
  10. symbols
  11.  
  12. message     entered
  13.  
  14. thing       ambientPos
  15.  
  16. sector      stopAmbients
  17. sector      startAmbients
  18.  
  19. sound       snd
  20.  
  21. int         looping     local
  22.  
  23. flex        vol=0.5
  24. flex        min=8.0
  25. flex        max=12.0
  26. flex        pitch=1.0
  27. flex        time=1.0
  28.  
  29. end
  30.  
  31. # ========================================================================================
  32.  
  33. code
  34.  
  35. entered:
  36.  
  37. if (GetSenderRef() == startAmbients)
  38.     {
  39.     looping = PlaySoundThing(snd, ambientPos, vol, min, max, 0x045);
  40.     ChangeSoundPitch(snd, pitch, time);
  41.     }
  42. if (GetSenderRef() == stopAmbients)
  43.     {
  44.     StopSound(looping, 0.0);
  45.     }
  46.  
  47. return;
  48.  
  49. # ========================================================================================
  50.  
  51. end
  52.  
  53.